home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strncat.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  2KB  |  64 lines

  1. /* 
  2.  * strncat.c --
  3.  *
  4.  *    Source code for the "strncat" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strncat.c,v 1.2 89/03/22 16:07:05 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strncat --
  26.  *
  27.  *    Copy one string (src) onto the end of another (dst), with a
  28.  *    limit on how many bytes to copy.
  29.  *
  30.  * Results:
  31.  *    The return value is a pointer to the destination string, dst.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. char *
  40. strncat(dst, src, numChars)
  41.     register char *src;        /* Place from which to copy. */
  42.     char *dst;            /* Destination string:  *srcPtr gets added
  43.                  * onto the end of this. */
  44.     register int numChars;    /* Maximum number of chars to copy. */
  45. {
  46.     register char *copy = dst;
  47.  
  48.     if (numChars == 0) {
  49.     return dst;
  50.     }
  51.  
  52.     do {
  53.     } while (*copy++ != 0);
  54.     copy -= 1;
  55.  
  56.     do {
  57.     if ((*copy++ = *src++) == 0) {
  58.         return dst;
  59.     }
  60.     } while (--numChars > 0);
  61.     *copy = 0;
  62.     return dst;
  63. }
  64.